concurrency, parallelism, multithreading.html
High level notes on concurrent and parallel programming.
Processes vs Threads
A thread is an independent sequence of execution. A process is a container for at least one thread of execution, along with all other resources needed for computation.
They both operate as constructs for managing parallel computation, but at different access levels. Most important to note is access to virtual memory.
Processes are each assigned separate sequences of the virtual memory address space with which to operate. The operating system enforces that one process cannot access the virtual address space of any other.
Threads, however, operate within a process, with shared access to its memory address space. That means multiple threads can access the same memory.
Concurrency vs Parallelism
Concurrency is a program/system property where multiple tasks can run in overlapping time periods. They need not actually run at the exact same instant.
Parallelism is a behavior that occurs when at least two tasks are executing at the exact same instant.
Common Concurrent Programming Constructs
- Lock
- Mutex
- Sempahore
- Conditional variable
- Events
Common Concurrent Programming Models
- Event loops
- Futures & promises
- Actor model
- Multithreading